2016 project-added to repo
[EroBeats.git] / Tools / Level Editor / Level Editor / Main.Designer.cs
blob35f363fa7f32bb808758cd5f080e5feaef2264ac
1 namespace Level_Editor
3 partial class Main
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
16 if (disposing && (components != null))
18 components.Dispose();
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
31 this.length = new System.Windows.Forms.TextBox();
32 this.bpm = new System.Windows.Forms.TextBox();
33 this.label1 = new System.Windows.Forms.Label();
34 this.label2 = new System.Windows.Forms.Label();
35 this.dataType = new System.Windows.Forms.ComboBox();
36 this.label3 = new System.Windows.Forms.Label();
37 this.Save = new System.Windows.Forms.Button();
38 this.Reset = new System.Windows.Forms.Button();
39 this.generate = new System.Windows.Forms.Button();
40 this.tools = new System.Windows.Forms.Panel();
41 this.load = new System.Windows.Forms.Button();
42 this.splitter1 = new System.Windows.Forms.Splitter();
43 this.timeSignature = new System.Windows.Forms.ComboBox();
44 this.label6 = new System.Windows.Forms.Label();
45 this.fileName = new System.Windows.Forms.TextBox();
46 this.label5 = new System.Windows.Forms.Label();
47 this.division = new System.Windows.Forms.ComboBox();
48 this.label4 = new System.Windows.Forms.Label();
49 this.content = new System.Windows.Forms.Panel();
50 this.tools.SuspendLayout();
51 this.SuspendLayout();
52 //
53 // length
54 //
55 this.length.Location = new System.Drawing.Point(33, 48);
56 this.length.Name = "length";
57 this.length.Size = new System.Drawing.Size(100, 20);
58 this.length.TabIndex = 0;
59 this.length.Text = "120";
60 this.length.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
61 //
62 // bpm
63 //
64 this.bpm.Location = new System.Drawing.Point(33, 112);
65 this.bpm.Name = "bpm";
66 this.bpm.Size = new System.Drawing.Size(100, 20);
67 this.bpm.TabIndex = 2;
68 this.bpm.Text = "120";
69 //
70 // label1
71 //
72 this.label1.AutoSize = true;
73 this.label1.Location = new System.Drawing.Point(30, 21);
74 this.label1.Name = "label1";
75 this.label1.Size = new System.Drawing.Size(88, 13);
76 this.label1.TabIndex = 3;
77 this.label1.Text = "Length(Seconds)";
78 this.label1.Click += new System.EventHandler(this.label1_Click);
79 //
80 // label2
81 //
82 this.label2.AutoSize = true;
83 this.label2.Location = new System.Drawing.Point(30, 84);
84 this.label2.Name = "label2";
85 this.label2.Size = new System.Drawing.Size(30, 13);
86 this.label2.TabIndex = 4;
87 this.label2.Text = "BPM";
88 this.label2.Click += new System.EventHandler(this.label2_Click);
89 //
90 // dataType
91 //
92 this.dataType.FormattingEnabled = true;
93 this.dataType.Items.AddRange(new object[] {
94 "0",
95 "1",
96 "2",
97 "10",
98 "20",
99 "30",
100 "40"});
101 this.dataType.Location = new System.Drawing.Point(33, 302);
102 this.dataType.Name = "dataType";
103 this.dataType.Size = new System.Drawing.Size(100, 21);
104 this.dataType.TabIndex = 5;
105 this.dataType.Text = "1";
106 this.dataType.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
108 // label3
110 this.label3.AutoSize = true;
111 this.label3.Location = new System.Drawing.Point(33, 208);
112 this.label3.Name = "label3";
113 this.label3.Size = new System.Drawing.Size(78, 13);
114 this.label3.TabIndex = 6;
115 this.label3.Text = "Time Signature";
117 // Save
119 this.Save.Location = new System.Drawing.Point(43, 485);
120 this.Save.Name = "Save";
121 this.Save.Size = new System.Drawing.Size(75, 23);
122 this.Save.TabIndex = 7;
123 this.Save.Text = "Save";
124 this.Save.UseVisualStyleBackColor = true;
125 this.Save.Click += new System.EventHandler(this.Save_Click);
127 // Reset
129 this.Reset.Location = new System.Drawing.Point(43, 562);
130 this.Reset.Name = "Reset";
131 this.Reset.Size = new System.Drawing.Size(75, 23);
132 this.Reset.TabIndex = 8;
133 this.Reset.Text = "Reset";
134 this.Reset.UseVisualStyleBackColor = true;
135 this.Reset.Click += new System.EventHandler(this.Reset_Click);
137 // generate
139 this.generate.Location = new System.Drawing.Point(43, 441);
140 this.generate.Name = "generate";
141 this.generate.Size = new System.Drawing.Size(75, 23);
142 this.generate.TabIndex = 12;
143 this.generate.Text = "Generate";
144 this.generate.UseVisualStyleBackColor = true;
145 this.generate.Click += new System.EventHandler(this.Generate_Click);
147 // tools
149 this.tools.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
150 this.tools.BackColor = System.Drawing.SystemColors.InactiveCaption;
151 this.tools.Controls.Add(this.load);
152 this.tools.Controls.Add(this.splitter1);
153 this.tools.Controls.Add(this.timeSignature);
154 this.tools.Controls.Add(this.label6);
155 this.tools.Controls.Add(this.fileName);
156 this.tools.Controls.Add(this.label5);
157 this.tools.Controls.Add(this.generate);
158 this.tools.Controls.Add(this.division);
159 this.tools.Controls.Add(this.label4);
160 this.tools.Controls.Add(this.dataType);
161 this.tools.Controls.Add(this.Reset);
162 this.tools.Controls.Add(this.length);
163 this.tools.Controls.Add(this.Save);
164 this.tools.Controls.Add(this.bpm);
165 this.tools.Controls.Add(this.label3);
166 this.tools.Controls.Add(this.label1);
167 this.tools.Controls.Add(this.label2);
168 this.tools.Location = new System.Drawing.Point(911, 0);
169 this.tools.Name = "tools";
170 this.tools.Size = new System.Drawing.Size(151, 677);
171 this.tools.TabIndex = 9;
173 // load
175 this.load.Location = new System.Drawing.Point(43, 524);
176 this.load.Name = "load";
177 this.load.Size = new System.Drawing.Size(75, 23);
178 this.load.TabIndex = 18;
179 this.load.Text = "Load";
180 this.load.UseVisualStyleBackColor = true;
182 // splitter1
184 this.splitter1.Location = new System.Drawing.Point(0, 0);
185 this.splitter1.Name = "splitter1";
186 this.splitter1.Size = new System.Drawing.Size(3, 677);
187 this.splitter1.TabIndex = 17;
188 this.splitter1.TabStop = false;
190 // timeSignature
192 this.timeSignature.FormattingEnabled = true;
193 this.timeSignature.Items.AddRange(new object[] {
194 "4/4",
195 "3/4",
196 "6/8"});
197 this.timeSignature.Location = new System.Drawing.Point(32, 231);
198 this.timeSignature.Name = "timeSignature";
199 this.timeSignature.Size = new System.Drawing.Size(100, 21);
200 this.timeSignature.TabIndex = 16;
201 this.timeSignature.Text = "4/4";
203 // label6
205 this.label6.AutoSize = true;
206 this.label6.Location = new System.Drawing.Point(30, 268);
207 this.label6.Name = "label6";
208 this.label6.Size = new System.Drawing.Size(64, 13);
209 this.label6.TabIndex = 15;
210 this.label6.Text = "Data Stored";
212 // fileName
214 this.fileName.Location = new System.Drawing.Point(33, 364);
215 this.fileName.Name = "fileName";
216 this.fileName.Size = new System.Drawing.Size(100, 20);
217 this.fileName.TabIndex = 14;
219 // label5
221 this.label5.AutoSize = true;
222 this.label5.Location = new System.Drawing.Point(33, 340);
223 this.label5.Name = "label5";
224 this.label5.Size = new System.Drawing.Size(54, 13);
225 this.label5.TabIndex = 13;
226 this.label5.Text = "File Name";
228 // division
230 this.division.FormattingEnabled = true;
231 this.division.Items.AddRange(new object[] {
232 "Quarter",
233 "Triplet",
234 "Eigth",
235 "Sixteenth",
236 "Sextuplet",
237 "ThirtySecond",
238 "SixtyFourth"});
239 this.division.Location = new System.Drawing.Point(33, 174);
240 this.division.Name = "division";
241 this.division.Size = new System.Drawing.Size(100, 21);
242 this.division.TabIndex = 11;
243 this.division.Text = "Quarter";
244 this.division.SelectedIndexChanged += new System.EventHandler(this.division_SelectedIndexChanged);
246 // label4
248 this.label4.AutoSize = true;
249 this.label4.Location = new System.Drawing.Point(30, 148);
250 this.label4.Name = "label4";
251 this.label4.Size = new System.Drawing.Size(81, 13);
252 this.label4.TabIndex = 10;
253 this.label4.Text = "Lowest Division";
254 this.label4.Click += new System.EventHandler(this.label4_Click);
256 // content
258 this.content.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
259 | System.Windows.Forms.AnchorStyles.Left)
260 | System.Windows.Forms.AnchorStyles.Right)));
261 this.content.AutoScroll = true;
262 this.content.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
263 this.content.Location = new System.Drawing.Point(-1, -1);
264 this.content.Name = "content";
265 this.content.Size = new System.Drawing.Size(909, 678);
266 this.content.TabIndex = 10;
267 this.content.Paint += new System.Windows.Forms.PaintEventHandler(this.content_Paint);
269 // Main
271 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
272 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
273 this.ClientSize = new System.Drawing.Size(1067, 679);
274 this.Controls.Add(this.content);
275 this.Controls.Add(this.tools);
276 this.Name = "Main";
277 this.Text = "Level Editor 62.5FPS";
278 this.Load += new System.EventHandler(this.Main_Load);
279 this.tools.ResumeLayout(false);
280 this.tools.PerformLayout();
281 this.ResumeLayout(false);
285 #endregion
287 private System.Windows.Forms.TextBox length;
288 private System.Windows.Forms.TextBox bpm;
289 private System.Windows.Forms.Label label1;
290 private System.Windows.Forms.Label label2;
291 private System.Windows.Forms.ComboBox dataType;
292 private System.Windows.Forms.Label label3;
293 private System.Windows.Forms.Button Save;
294 private System.Windows.Forms.Button Reset;
295 private System.Windows.Forms.Panel tools;
296 private System.Windows.Forms.Label label4;
297 private System.Windows.Forms.Panel content;
298 private System.Windows.Forms.ComboBox division;
299 private System.Windows.Forms.Button generate;
300 private System.Windows.Forms.TextBox fileName;
301 private System.Windows.Forms.Label label5;
302 private System.Windows.Forms.ComboBox timeSignature;
303 private System.Windows.Forms.Label label6;
304 private System.Windows.Forms.Splitter splitter1;
305 private System.Windows.Forms.Button load;